home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Menu Alignment 1.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="Appearance\Interface\Effects"
  5. "NAME"="Menu Alignment"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Align to Left (default)"
  8. "TEXT 2"="Align to Right"
  9. "DESCRIPTION 1"="This option allows you to change how popup menus are aligned when they are opened. Normally, when you click open a menu in a program, it is aligned to the left of the menu title (so clicking on the Programs menu in X-Setup will produce a menu aligned to the left of Programs)."
  10. "DESCRIPTION 2"="With this option, you can change the alignment, so that the menus align to the right of the menu title. Any changes you make will take effect the next time you log on."
  11. "COMMENT 1"="Taken from More Control, a prehistoric tweaking utility for Windows 3.1."
  12. "VERSION"="1.02"
  13. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "CONTACTURL"="http://www.xteq.com/"
  16.  
  17. sP="HKCU\Control Panel\Desktop\MenuDropAlignment"
  18.  
  19. SUB Plugin_Initialize
  20.  s=RegReadValue(sP)
  21.  if s="1" then
  22.   Call SetUIElement(2,true)
  23.  else
  24.   Call SetUIelement(1,true)
  25.  end if
  26. END SUB
  27.  
  28. SUB Plugin_CheckData(ElementIndex)
  29. END SUB
  30.  
  31. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  s=GetUIElement(1)
  33.  if s=true then
  34.   Call RegWriteValue(sP,"0",1)
  35.  end if
  36.  
  37.  s=GetUIElement(2)
  38.  if s=true then
  39.   Call RegWriteValue(sP,"1",1)
  40.  end if
  41.  
  42.  Call Logoff()
  43. END SUB
  44.  
  45. SUB Plugin_Terminate
  46. END SUB